home *** CD-ROM | disk | FTP | other *** search
/ The See Clearly Method / TheSeeClearlyMethod.iso / Media / lesson4.dir / 00024_Script_FW Hold on Current Frame < prev    next >
Text File  |  2002-05-22  |  501b  |  26 lines

  1.  
  2. -- HISTORY --
  3.  
  4. -- 3 November, written for the D7 Behaviors Palette by James Newton
  5. -- 5 January   2000: updated to D8 <km>
  6. -- 5 March   2000: Updated to be D7 and D8 compatible for Fireworks Importer <jba>
  7.  
  8.  
  9.  
  10. on exitFrame me
  11.   set the volume of sound 1 to 0
  12.   cursor 0
  13.   sound(1).pause()
  14.   set the movieRate of sprite(20) to 0
  15. end exitFrame
  16.  
  17.  
  18. on isOKToAttach (me, aSpriteType, aSpriteNum)
  19.  
  20. tIsOk = 0  
  21. if aSpriteType = #script then   
  22. tIsOK = 1
  23. end if
  24.  
  25. return(tIsOK)  
  26. end on